home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
1810
/
1810.xpi
/
chrome
/
showcase.jar
/
content
/
utils.js
< prev
Wrap
Text File
|
2010-01-17
|
671b
|
21 lines
function openURL(aURL)
{
if (aURL == null) aURL = "about:blank";
var windowManager = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
// check for an existing window and focus it; it's not application modal
var anyWindow = windowManager.getMostRecentWindow("navigator:browser");
if (!anyWindow) {
var hiddenWin = Components.classes[ "@mozilla.org/appshell/appShellService;1" ].
getService(Components.interfaces.nsIAppShellService).
hiddenDOMWindow;
hiddenWin.open(aURL, "_blank");
} else {
anyWindow.open(aURL, "_blank");
}
}